home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
gnustuff
/
tos
/
881
/
src6.zoo
/
sign.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-09-24
|
205 b
|
19 lines
double sign (x, y)
double x;
double y;
{
if (x > 0.0) {
if (y > 0.0) {
return(x);
} else {
return(-x);
}
} else {
if (y < 0.0) {
return(x);
} else {
return(-x);
}
}
}